is nil, don't check the `font-lock-multiline' text property.
(with-buffer-prepared-for-jit-lock
;; If we're in text that matches a multi-line font-lock pattern,
;; make sure the whole text will be redisplayed.
- (when (get-text-property start 'font-lock-multiline)
+ (when (and font-lock-multiline
+ (get-text-property start 'font-lock-multiline))
(setq start (or (previous-single-property-change
start 'font-lock-multiline)
(point-min))))